home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 266_01 / bike89.pic < prev    next >
Text File  |  1990-06-15  |  1KB  |  40 lines

  1. *       Illustrates plots to separate y axes (left and right),
  2. *       a word axis, and labelling of plot points.
  3. PIC
  4. HUE white
  5. TITLE at 3.5 4.25     font 2 text Bicycle Mileage 1989
  6. TITLE at .1,2.75  ver font 2 text MONTHLY
  7. TITLE at 6.85,2.9 ver font 2 text CUMULATIVE
  8. AREA at .5,.5 size 6 by 4
  9. *     Build month word axis
  10. AXIS left to 4 invisible
  11. AXIS below to 13 invisible
  12. ISO
  13. LABEL at  1,-.2 font 2 text JAN
  14. LABEL at  2,-.2 font 2 text FEB
  15. LABEL at  3,-.2 font 2 text MAR
  16. LABEL at  4,-.2 font 2 text APR
  17. LABEL at  5,-.2 font 2 text MAY
  18. LABEL at  6,-.2 font 2 text JUN
  19. LABEL at  7,-.2 font 2 text JUL
  20. LABEL at  8,-.2 font 2 text AUG
  21. LABEL at  9,-.2 font 2 text SEP
  22. LABEL at 10,-.2 font 2 text OCT
  23. LABEL at 11,-.2 font 2 text NOV
  24. LABEL at 12,-.2 font 2 text DEC
  25. *     Plot cumulative line
  26. HUE lime
  27. AXIS right to 2500 boxes 5
  28. LINE file BIKE89.DAT items 1 3
  29. LABEL at 12,2500 text 2475.6
  30. *     Plot monthly bars
  31. HUE lemon
  32. AXIS left to 500 boxes 5
  33. BARS file BIKE89.DAT items 1 2 hatch left gap 2
  34. *     Show value of tallest bar
  35. LABEL at 7,325 text 319
  36. *     Reference line at average monthly mileage
  37. HUE peach
  38. ISO sparse at 206.3
  39. LABEL at .2,215 left text AVERAGE 206.3
  40.